home *** CD-ROM | disk | FTP | other *** search
Borland Project Group | 1998-10-06 | 920 b | 31 lines |
- #------------------------------------------------------------------------------
- VERSION = BWS.01
- #------------------------------------------------------------------------------
- !ifndef ROOT
- ROOT = $(MAKEDIR)\..
- !endif
- #------------------------------------------------------------------------------
- MAKE = $(ROOT)\bin\make.exe -$(MAKEFLAGS) -f$**
- DCC = $(ROOT)\bin\dcc32.exe $**
- BRCC = $(ROOT)\bin\brcc32.exe $**
- #------------------------------------------------------------------------------
- PROJECTS = visitlog.exe TrkTable.exe DbServer.exe \
- VisitBob.dll
- #------------------------------------------------------------------------------
- default: $(PROJECTS)
- #------------------------------------------------------------------------------
-
- visitlog.exe: visitlog.dpr
- $(DCC)
-
- TrkTable.exe: TrkTable.dpr
- $(DCC)
-
- DbServer.exe: DbServer.dpr
- $(DCC)
-
- VisitBob.dll: VisitBob.dpr
- $(DCC)
-
-
-